Skip to content

Instantly share code, notes, and snippets.

@jkwmoore
jkwmoore / setup-bw-ssh-agent.sh
Last active March 14, 2026 22:58
A script to get Bitwarden SSH agent working inside WSL2 Ubuntu
#!/bin/bash
# This code is licensed under MIT license https://choosealicense.com/licenses/mit/
#
# Note: I have only tested lightly and this seems to work. I won't take the blame if this makes your
# machine catch fire.
#
# Thanks to Aaron and the original work discussed here:
# https://www.rebelpeon.com/bitwarden-ssh-agent-on-wsl2/
#
# If you want to run this script as is you can:
@NSExceptional
NSExceptional / StudentLoanDefaultGuide.md
Created January 14, 2020 02:46
Student Loan Default: The Guide

The original guide that was recently deleted here: https://www.reddit.com/r/studentloandefaulters/comments/cg1fd7/student_loan_default_a_guide/

I take no credit for this post, just happened to have it saved in a document and thought I'd be doing an injustice by not sharing this information once I saw the original post was missing! All credit goes to the original author, and without further ado...

Student Loan Default: A Guide

I’ve been wanting to write this for a long time, and seeing that person be in $500,000 of debt and no one really helping him on r/studentloans, I felt it was time to summarize everything I’ve learned. While there is great information on this sub, it is not centralized. It requires some digging. I hope now to bring all of it to the surface.

@davidcsejtei
davidcsejtei / claude.md
Created December 19, 2025 14:00
Nuxt.js, Tailwind, Pinia - claude.md

Claude Code – Nuxt Project Guidelines (David’s Style)

This file defines mandatory rules for all code generation and modifications in this Nuxt codebase. If any rule would be violated, stop and fix the solution to fully comply with these guidelines.


0) Global Principles (always)

  • if "create skeleton" is requested, create a new nuxt project with minimal setup: an home page with one text content, router with one route for home. IMPORTANT: keep as simple as possible, do NOT add any extra dependencies, code, or features. Try to solve the request with minimal code as quick as possible.
@dcts
dcts / workbench.colorCustomizations.json
Created April 14, 2020 16:51 — forked from jacklorusso/workbench.colorCustomizations.json
A list of all Visual Studio Code customizable colors, grouped by UI region. Copy and paste into User Settings (comments are allowed) to tweak an existing theme or work on your own.
"workbench.colorCustomizations": {
// Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast.
"contrastActiveBorder": "",
"contrastBorder": "",
// Base Colors
"focusBorder": "",
"foreground": "",
"widget.shadow": "",
"selection.background": "",
"descriptionForeground": "",
@graiz
graiz / CLAUDE.md
Last active March 14, 2026 22:52
Personal Chief of Staff Project

Personal Chief of Staff

The Job

Help [YOUR NAME] execute on what matters without burning out. You are an expert executive admin.

Prioritize, protect time, reduce cognitive load. Make recommendations. Anticipate future needs and potential problems.

@fnky
fnky / ANSI.md
Last active March 14, 2026 22:46
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27

Proxmox VE tips

Just some tips I gathered over time. All in one easily reachable place so I can share it wherever I want.

Please note that unless you see a shebang (#!/...) these code blocks are usually meant to be copy & pasted directly into the shell. Some of the steps will not work if you run part of them in a script and copy paste other ones as they rely on variables set before.
The { and } surrounding some scripts are meant to avoid poisoning your bash history with individual commands, etc. You can ignore them if you manually copy paste the individual commands.
I chose to write things "in the open" that way so there's still some control and things don't become a black box.

Table of contents

@mrladeia
mrladeia / readme.md
Last active March 14, 2026 22:46
Iptables to Oracle Cloud port 80 and 443 open

IPTABLES to Oracle Cloud port 80 and 443 open

If you need to open up ports 80 and 443, on file /etc/iptables/rules.v4 just add

-A INPUT -p tcp -m state --state NEW -m multiport --dports 80,443 -j ACCEPT

directly below

@dominicthomas
dominicthomas / ffmpeg wav -> mp3
Created October 7, 2014 09:30
Convert a wav to a 320k mp3 using ffmpeg.
ffmpeg -i inputfile.wav -ab 320k outputfile.mp3
@harold-b
harold-b / bgfx.odin
Created May 21, 2024 18:50
Odin bindings for bgfx
package bgfx
import "base:intrinsics"
import "base:runtime"
import cffi "core:c"
when ODIN_OS == .Linux {
@require foreign import bgfx {
"libs/windows/bgfx.a",
}